home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / mac / files / ID99MENU.DIR / 00022_Script_demo button script < prev    next >
Text File  |  1999-04-29  |  486b  |  27 lines

  1. global demos,currtitle
  2.  
  3. property s
  4.  
  5. on beginsprite me
  6.   s = the spritenum of me
  7. end
  8.  
  9. on prepareframe me
  10.   if currtitle = 0 then
  11.     set the member of sprite s to "dim demo"
  12.     exit
  13.   end if
  14.   thedemo = getat(demos,currtitle)
  15.   if thedemo <> "" then
  16.     set the member of sprite s to "demo button"
  17.   else
  18.     set the member of sprite s to "dim demo"
  19.   end if
  20. end
  21.  
  22. on mouseUp
  23.   if currtitle = 0 then exit
  24.   thedemo = getat(demos,currtitle)
  25.   godemo thedemo
  26. end
  27.